home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 39 / Issue 39.iso / pc / PCSoftware / EditML Pro 1.0 / EditMLProv1.0Setup.exe / Main / WeatherSchema.xml < prev    next >
Encoding:
Text File  |  2000-10-09  |  1.1 KB  |  32 lines

  1. <Schema xmlns="urn:schemas-microsoft-com:xml-data"
  2.         xmlns:dt="urn:schemas-microsoft-com:datatypes">
  3.   <AttributeType name="C" required="yes" dt:type="string"/>
  4.   <AttributeType name="F" required="yes" dt:type="string"/>
  5.   <ElementType name="LOW">
  6.     <attribute type="C"/>
  7.     <attribute type="F"/>
  8.   </ElementType>
  9.   <ElementType name="HI">
  10.     <attribute type="C"/>
  11.     <attribute type="F"/>
  12.   </ElementType>
  13.   <AttributeType name="VALUE" required="yes" dt:type="enumeration" 
  14.      dt:values="SUNNY PARTLYSUNNY PARTLYCLOUDY CLOUDY RAIN SNOW"/>
  15.   <ElementType name="SKIES">
  16.     <attribute type="VALUE"/>
  17.   </ElementType>
  18.   <AttributeType name="NAME" required="yes" dt:type="string"/>
  19.   <ElementType name="CITY" content="mixed">
  20.     <attribute type="NAME"/>
  21.     <element type="SKIES"/>
  22.     <element type="HI"/>
  23.     <element type="LOW"/>
  24.   </ElementType>
  25.   <ElementType name="STATE" content="mixed">
  26.     <attribute type="NAME"/>
  27.     <element type="CITY"/>
  28.   </ElementType>
  29.   <ElementType name="WEATHERREPORT" content="eltOnly">
  30.     <element type="STATE"/>
  31.   </ElementType>
  32. </Schema>